cssshadowvalue: Rename shadow_key to original_cr_key
authorJasper St. Pierre <jstpierre@mecheye.net>
Sat, 30 Aug 2014 00:33:27 +0000 (17:33 -0700)
committerBenjamin Otte <otte@redhat.com>
Fri, 3 Oct 2014 04:18:04 +0000 (06:18 +0200)
shadow_key is a poor name for this, and we're going to add more user
data keys, so rename it to something more indicative of what it's used
for.

gtk/gtkcssshadowvalue.c

index 7f72698df2651023ac97e8b85b286d1c3fd98b97..239fb25b895b49ee0f733aab40d6fcd00e4851bd 100644 (file)
@@ -311,7 +311,7 @@ fail:
   return NULL;
 }
 
-static const cairo_user_data_key_t shadow_key;
+static const cairo_user_data_key_t original_cr_key;
 
 static cairo_t *
 gtk_css_shadow_value_start_drawing (const GtkCssValue *shadow,
@@ -337,7 +337,7 @@ gtk_css_shadow_value_start_drawing (const GtkCssValue *shadow,
                                                 clip_rect.height + 2 * clip_radius);
   cairo_surface_set_device_offset (surface, clip_radius - clip_rect.x, clip_radius - clip_rect.y);
   blur_cr = cairo_create (surface);
-  cairo_set_user_data (blur_cr, &shadow_key, cairo_reference (cr), (cairo_destroy_func_t) cairo_destroy);
+  cairo_set_user_data (blur_cr, &original_cr_key, cairo_reference (cr), (cairo_destroy_func_t) cairo_destroy);
 
   if (cairo_has_current_point (cr))
     {
@@ -363,7 +363,7 @@ gtk_css_shadow_value_finish_drawing (const GtkCssValue *shadow,
     return cr;
 
   surface = cairo_get_target (cr);
-  original_cr = cairo_get_user_data (cr, &shadow_key);
+  original_cr = cairo_get_user_data (cr, &original_cr_key);
 
   /* Blur the surface. */
   _gtk_cairo_blur_surface (surface, radius);